home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / interp.h < prev    next >
C/C++ Source or Header  |  1995-09-04  |  2KB  |  62 lines

  1. /* Copyright (C) 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* interp.h */
  20. /* Internal interfaces to interp.c and iinit.c */
  21.  
  22. /* ------ iinit.c ------ */
  23.  
  24. /* Enter a name and value into systemdict. */
  25. void initial_enter_name(P2(const char *, const ref *));
  26.  
  27. /* Remove a name from systemdict. */
  28. void initial_remove_name(P1(const char *));
  29.  
  30. /* ------ interp.c ------ */
  31.  
  32. /*
  33.  * Maximum number of arguments (and results) for an operator,
  34.  * determined by operand stack block size.
  35.  */
  36. extern const int gs_interp_max_op_num_args;
  37.  
  38. /*
  39.  * Number of slots to reserve at the start of op_def_table for
  40.  * operators which are hard-coded into the interpreter loop.
  41.  */
  42. extern const int gs_interp_num_special_ops;
  43.  
  44. /*
  45.  * Create an operator during initialization.
  46.  * If operator is hard-coded into the interpreter,
  47.  * assign it a special type and index.
  48.  */
  49. void gs_interp_make_oper(P3(ref *opref, op_proc_p, int index));
  50.  
  51. /* Get the name corresponding to an error number. */
  52. int gs_errorname(P2(int, ref *));
  53.  
  54. /* Put a string in $error /errorinfo. */
  55. int gs_errorinfo_put_string(P1(const char *));
  56.  
  57. /* Initialize the interpreter. */
  58. void gs_interp_init(P0());
  59.  
  60. /* Reset the interpreter. */
  61. void gs_interp_reset(P0());
  62.